home *** CD-ROM | disk | FTP | other *** search
/ F1 Licenseware / F1 Licenseware - Volume 1.iso / disks / 050a.dms / 050a.adf / EXAMPLE_PROGRAMS / example02.AMOS / example02.amosSourceCode
AMOS Source Code  |  1992-02-26  |  659b  |  18 lines

  1. '=================== 
  2. 'EXAMPLE PROGRAM TWO 
  3. '=================== 
  4. '
  5. 'This little program prints a message on a black screen and then waits 
  6. 'for any key to be pressed before returning the user back here, to the editor. 
  7. 'Exactly the same as example 1   
  8. '
  9. Rem This is the difference using colons can make to the readability
  10. Rem and size of your listings the single line below is example1.amos 
  11. Rem all bunged smartly on one line seperated by colons.  
  12. '
  13. '
  14. Paper 0 : Curs Off : Hide : Cls 0 : Print "Testing....Press a key" : Wait Key : Edit 
  15. '
  16. '
  17. Rem You can use REM or a ' whatever suits you, it tells Amos not to  
  18. Rem execute anything following on that line